home *** CD-ROM | disk | FTP | other *** search
/ Supercompiler 1997 / SUPERCOMPILER97.iso / Delphi 3.0 / DATA.Z / qrlabels.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-01-30  |  511 b   |  31 lines

  1. { QuickReport master detail template }
  2.  
  3. unit qrlabels;
  4.  
  5. interface
  6.  
  7. uses
  8.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  9.   Qrctrls, quickrpt, DB, DBTables, ExtCtrls;
  10.  
  11. type
  12.   TQRLabelsForm = class(TForm)
  13.     Report: TQuickRep;
  14.     MasterTable: TTable;
  15.     DetailBand1: TQRBand;
  16.     QRLabel2: TQRLabel;
  17.   private
  18.     { Private declarations }
  19.   public
  20.     { Public declarations }
  21.   end;
  22.  
  23. var
  24.   QRLabelsForm: TQRLabelsForm;
  25.  
  26. implementation
  27.  
  28. {$R *.DFM}
  29.  
  30. end.
  31.